Authenticate Response
data class AuthenticateResponse(val redirectUrl: String, val message: String? = null, var passkeyBindingToken: String? = null)
A response returned after successfully authenticating.
Properties
Link copied to clipboard
An optional one-time-token returned from successful redeemOtp
that may be redeemed for a credential_binding_link from the /credential-binding-jobs endpoint.
Link copied to clipboard
The redirect URL that originates from the /authorize call's redirect_uri
parameter. The OAuth2 authorization code
and the state
parameter of the /authorize call are attached with the "code" and "state" parameters to this URL.